#app-bank {
	background-color: #fefefe;
}

#app-bank>.app-inner {
	color: #535353;
	display: block;
	padding: 0;
}

#app-bank .app-inner {
	height: 400px;
}

#app-bank .bank-header {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #e2e2e2;
	margin-bottom: 25px;
	background-color: #fefefe;
}

#app-bank .bank-header>h2 {
	flex: 1;
	text-align: center;
	margin: 0;
	padding: 0;
}

#app-bank .bank-input-div {
	display: flex;
	flex-direction: column;
	margin: 5px 10px;
}

#app-bank .bank-input-div>input {
	color: #232323;
	border: none;
	outline: none;
	font-size: 1.4em;
	padding: 4px 0px;
	border-bottom: 1px solid #ddd;
}

#app-bank .bank-input-div>input.selected {
	border-bottom: 1px solid #1da1f2;
}

#app-bank .button-container {
	position: absolute;
	bottom: 0;
	margin-bottom: 5px;
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

#app-bank .button {
	width: calc(100% - 20px);
	height: 40px;
	line-height: 40px;
	background-color: #3884b3;
	text-align: center;
	color: #FFF;
	bottom: 0;
	margin: 5px;
	border-radius: 4px;
}

#app-bank .button.selected {
	background-color: #1da1f2;
}